home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / msdos / editors / eedraw / src / ed / eestring.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-20  |  577 b   |  16 lines

  1. /*****************************************************************************
  2. *   Module to handle screen printing.                         *
  3. *                                         *
  4. * Written by:  Gershon Elber            IBM PC Ver 1.0,    Dec. 1989    *
  5. *****************************************************************************/
  6.  
  7. #ifndef EESTRING_H
  8. #define EESTRING_H
  9.  
  10. void PutTextInfo(int Orient, int PosX, int PosY, int Scale, char *Str);
  11. void PutLineTextInfo(int x1, int y1, int x2, int y2, char *PinText, int PinNum,
  12.                 BooleanType TextInside, BooleanType DrawNums,
  13.                 int Mode);
  14.  
  15. #endif EESTRING_H
  16.